home *** CD-ROM | disk | FTP | other *** search
/ Internet Surfer 2.0 / Internet Surfer 2.0 (Wayzata Technology) (1996).iso / pc / text / mac / faqs.081 < prev    next >
Text File  |  1996-02-12  |  28KB  |  854 lines

  1. Frequently Asked Questions (FAQS);faqs.081
  2.  
  3.  
  4.  
  5.     % alt %
  6.  
  7.   This allows the rest of the alt hierarchy, including subgroups such
  8.   as alt.flame.spelling (if you subscribe to it), to get included at
  9.   that point in the sequence.
  10.  
  11.   Along with using the default settings of cross-filter-seq=true and
  12.   cross-post=false, this works fine to nuke the crossposted articles.
  13.   --Richard M. Mathews <richard@locus.com> & Dave Shaver <shaver@convex.com>
  14.  
  15.  
  16. Subject: How can I select one article in a thread with auto-select-subject set?
  17. From: Using nn-26
  18.  
  19.   Define the following macro to toggle auto-select-subject.  --Steven
  20.   Grady <grady@fx.com>
  21.  
  22.     map menu A (
  23.         :local auto-select-subject
  24.         :toggle auto-select-subject
  25.         ?auto-select-subject=on echo "Auto-select on"
  26.         ?auto-select-subject=off echo "Auto-select off"
  27.     )
  28.  
  29.   Use the '.' command.
  30.  
  31.  
  32. Subject: Is there a library of macros and other nn features?
  33. From: Using nn-27
  34.  
  35.   When complete, it will be a companion posting to this one.  If you
  36.   have not mailed me <wohler@sap-ag.de> your init file, or you have
  37.   made substantial changes since the last time, please send it in.  If
  38.   anyone is handy in perl or awk and would like to write some scripts
  39.   to reduce multiple init files to variable summaries (like the one I
  40.   posted a long time ago), macro definitions and presentation sequence
  41.   tricks, I would like to talk to you.
  42.  
  43.  
  44. Subject: Can one search for patterns in the entire article from the menu?
  45. From: Using nn-28
  46.  
  47.   No.
  48.  
  49.  
  50. Subject: How can I remove old articles from folders?
  51. From: Using nn-29
  52.  
  53.   Just open the folder in the usual way and C(ancel) the articles you
  54.   want to remove from the folder.  When you leave the folder, nn will
  55.   rewrite the folder with the "cancel"ed articles removed.  --Kim
  56.   Storm <storm@olicom.dk>
  57.  
  58.  
  59. Subject: What's the best way to save multi-part articles?
  60. From: Using nn-30
  61.  
  62.   All you have to do is to save the articles from the menu, e.g.
  63.  
  64.     W(rite) +file.* a b c d... <space>
  65.  
  66.   where a b c d... are the articles on the menu you want to save.  You
  67.   can also save the selected articles on the menu with * (only on
  68.   current page) or + (on all menu pages).  --Kim Storm <storm@olicom.dk>
  69.  
  70.  
  71. Subject: When saving in +a/b/c keeps you from saving in +a/b.
  72. From: Using nn-31
  73.  
  74.   This happens when default-save-file is $F.  Try changing
  75.   default-save-file to $F/$N (my favorite) to get, for example,
  76.   +news/software/nn/1022, or $G to put everything in
  77.   +news.software.nn.  Finally, if you really did want the behavior of
  78.   +$F, a compromise would be to use +$F. (Andrew's favorite) instead
  79.   (one can use anything other than '.'). --Bill Wohler & Andrew Swann
  80.   <swann@imada.ou.dk>
  81.  
  82.   Alternatively, use +$F/$L, to place articles for news.software.nn in
  83.   the file +/news/software/nn/nn.  This has two advantages:
  84.   1) You can later read through the folder "nn" and save some of the
  85.     articles under new folder names having to do with the topic.  For
  86.     example, you might save auto-select topics under +$F/auto-sel,
  87.     that is, +/news/software/nn/auto-sel.
  88.   2) If at a later date, a new newsgroup is added below nn, articles
  89.     can still be saved under that subgroup since +/news/software/nn is
  90.     already a directory, not a folder.  --Harry Herman <herman@corpane.uucp>
  91.  
  92.  
  93. Subject: ! Can I use my mailer to send mail?
  94. From: Using nn-32
  95.  
  96.   Yes.  See the variables mail-alias-expander, mail-script, mailer,
  97.   and mailer-pipe-input.  The following show how you can have nn look
  98.   up mail aliases, and use elm and MH to mail messages.  [9.92]
  99.  
  100.   #!/bin/sh
  101.   #
  102.   # nn-expand-mail-alias -- expands aliases from ~/.mailrc file for nn.
  103.   #
  104.   # To use, put the following in your ~/.nn/init file:
  105.   #
  106.   #    set mail-alias-expander nn-expand-mail-alias
  107.   # and put this file somewhere in your path, making it executable.  I use
  108.   #    set mail-alias-expander /usr/local/lib/nn-expand-mail-alias
  109.   # but the choice is up to you.
  110.   #
  111.   # Written by Scott Hannahs, Bitter National Magnet Lab, MIT, August 1991
  112.   # Complaints, comments, ideas to sth@slipknot.mit.edu
  113.   # Tested on Silicon Graphics, IRIX 3.3.1
  114.   #
  115.   # Minor banging by <rreiner@nexus.yorku.ca> to handle alias value fields
  116.   # which contain doublequote characters, e.g.
  117.   #
  118.   #    alias Foo "Foobar the Great <foo@bar.com>"
  119.   #
  120.   # (the doublequotes are stripped in the expansion), and to handle multiple
  121.   # spaces after the token "alias".
  122.   #
  123.   # Also added some error detection and signal traps; tested on SunOS 4.1.1.
  124.   #
  125.   #    Exit codes:     0 -- normal termination
  126.   #            1 -- parm error
  127.   #            2 -- file does not exist
  128.   #            3 -- trap
  129.   #
  130.   # Thanks to bug reports from
  131.   #  Andy Jacobs and others
  132.   #
  133.   if [ z$1 = z ]; then
  134.     myname=`basename $0`
  135.     echo "$myname: usage is  $myname workfile"
  136.     exit 1
  137.   fi
  138.  
  139.   if [ ! -f $1 ]; then
  140.     myname=`basename $0`
  141.     echo "$myname: $1 does not exist or is a directory"
  142.     exit 2
  143.   fi
  144.  
  145.   TMP_DIR=/usr/tmp
  146.  
  147.   trap "rm -f ${TMP_DIR}/nn.alias.$$ ; exit 3" 0 1 2 3 15
  148.  
  149.   ALIAS_LIST=""
  150.   ADDRESS_LIST="`head -1 $1 | sed -e s/To://`"
  151.   until [ "$ALIAS_LIST" = "$ADDRESS_LIST" ] ; do
  152.     ALIAS_LIST="`echo "$ADDRESS_LIST"| sed -e 's/,/ /g' `"
  153.     ADDRESS_LIST=""
  154.       for ALIAS in $ALIAS_LIST ; do
  155.     ADDRESS=`grep '^[     ]*alias[     ][     ]*'"$ALIAS"'[     ]' ${HOME}/.mailrc |\
  156.     sed      -e s/'^[     ]*alias[     ][     ]*'"$ALIAS"'[     ][     ]*'// |\
  157.     sed -e s/'"'//g`
  158.     if [ "$ADDRESS" ] ; then
  159.       ADDRESS_LIST="$ADDRESS_LIST $ADDRESS"
  160.     else
  161.       ADDRESS_LIST="$ADDRESS_LIST $ALIAS"
  162.   #      for elm alias expansion use the following line instead of the previous.
  163.   #      ADDRESS_LIST="$ADDRESS_LIST "`elm -c "$ALIAS" | cut -f3 -d\ `
  164.     fi
  165.       done
  166.     done
  167.   echo "To:${ADDRESS_LIST}" > ${TMP_DIR}/nn.alias.$$
  168.   tail +2 $1 >> ${TMP_DIR}/nn.alias.$$
  169.   mv -f ${TMP_DIR}/nn.alias.$$ $1
  170.  
  171.   exit 0
  172.  
  173.   The original idea of using MH (namely, comp) to send mail from nn
  174.   came from Jaap Vermeulen <jaap@sequent.com>, but he wouldn't
  175.   recognize what I did to it.  I also used a suggestion from John
  176.   Romine <jromine@ics.uci.edu> and Tom McCain.
  177.  
  178.   Add
  179.  
  180.     set mail-script nn-use-mh
  181.  
  182.   to your init file, where nn-use-mh is the following:
  183.  
  184.   #!/bin/sh
  185.  
  186.   # Obtain value of $WORK and $RECORD
  187.   . ${HOME}/.nn/.param
  188.  
  189.   # Append Fcc: +folder to headers.  The folder is specified in
  190.   # mail-record.
  191.   if [ "$RECORD" != "" ]; then
  192.     awk '
  193.     {
  194.         if ($0 == "" && !done) {
  195.             print "Fcc: +'$RECORD'";
  196.             done = 1;
  197.         }
  198.         print;
  199.     }' $WORK > /tmp/aux.$$ && mv /tmp/aux.$$ $WORK
  200.   fi
  201.  
  202.   # Compose and send the mail
  203.   comp -form $WORK
  204.  
  205.   In addition, you can contact Ray Davis <rdavis@convex.com> for some
  206.   scripts that sort of turn nn into a MH front end by providing macros
  207.   to save, delete and refile articles in MH folders.
  208.  
  209.   Here is an example to use elm to send the messages.
  210.  
  211.   Add the following to ~/.nn/init:
  212.  
  213.     set   mailer              nn_elm
  214.     unset mailer-pipe-input
  215.  
  216.   Here is nn_elm:
  217.  
  218.   #!/bin/sh
  219.   #
  220.   # nn_elm
  221.   #
  222.   # 07 Aug 91             V1.0
  223.   #
  224.   # Massage a mail message from nn into a form that elm can use
  225.   # (c) 1991 Phil Kernick <phil@adam.adelaide.edu.au> Wizard Software
  226.   #
  227.  
  228.   eval `awk '
  229.   BEGIN {
  230.     FS = ":";
  231.     dq = sprintf("%c", 34);
  232.  
  233.     headers = 0;
  234.     to = "";
  235.     subject = "";
  236.   }
  237.  
  238.   /^.*: / {
  239.     headers++;
  240.     if($1 == "To")
  241.       to = dq substr($0, 5) dq;
  242.     if($1 == "Subject")
  243.       subject = dq substr($0, 10) dq;
  244.   }
  245.  
  246.   /^$/ {
  247.       printf("tail +%d %s | elm -s %s %s > /dev/null\n", headers+2, mail, subject, to);
  248.       exit;
  249.   }' mail=$1 $1`
  250.  
  251.   exit $?
  252.  
  253.  
  254. Subject: How can I see the original article with the current subject?
  255. From: Using nn-33
  256.  
  257.   While reading an article, use "G RET RET RET".
  258.  
  259.  
  260. Subject: ! Can I choose newsgroups as I do articles, ie. with a menu?
  261. From: Using nn-34
  262.  
  263.   No, not yet.  Sorry.  However, progress in this direction has been
  264.   made--if you care to finish the work, please contact Peter Wemm
  265.   <peter@zeus.dialix.oz.au>. [12.92]
  266.  
  267.  
  268. Subject: How can I post prewritten articles with nn?
  269. From: Using nn-35
  270.  
  271.   nnpost will construct the header for the posted article, so it
  272.   requires several arguments to be specified before the article is
  273.   posted, e.g. a newsgroup name and a subject.  If some arguments are
  274.   missing, nnpost will prompt for the missing arguments.
  275.  
  276.   If your pre-written article includes a full header, then you should
  277.   not use nnpost; instead you should feed the article to "inews -h"
  278.   directly (which is what nnpost does after building the header from
  279.   the arguments).  --Kim Storm <storm@olicom.dk>
  280.  
  281.  
  282. Subject: How do I eliminate double signatures?
  283. From: Using nn-36
  284.  
  285.   Double signatures occur when both nn and inews append $HOME/.signature.
  286.  
  287.   If you want just inews to append your signature, use:
  288.  
  289.     unset append-signature-post
  290.  
  291.   This is actually the default, but you can unset this variable if
  292.   your nn administrator has mistakenly turned it on.
  293.  
  294.   If you want just nn to append your signature, move your signature to
  295.   some other place than $HOME/.signature.  Then see, "Can the signature
  296.   come from a different file or program?"
  297.  
  298.  
  299. Subject: Can the signature come from a different file or program?
  300. From: Using nn-37
  301.  
  302.   If you want nn to append your .signature file, you can copy nn's aux
  303.   file (ie. /usr/local/lib/nn/aux) to your .nn directory and set the
  304.   mail-script and news-script variables to ~/.nn/aux.  In your copy of
  305.   the aux script, you can either specify a different place for your
  306.   .signature file (like $HOME/.nn/signature) or you can get fancy: you
  307.   can use specific .signatures for certain groups (saved in variable
  308.   "G"), or use the output of a program.  --Bill Wohler
  309.  
  310.   Tired of the same old signature?  Want different signatures for
  311.   different newsgroups?  Here's a program to help you out.
  312.  
  313.   The way it works is to have .signature be a named pipe, so if you
  314.   don't have named points, just say 'n'.
  315.  
  316.   The sigrand program then feeds stuff down the pipe everytime someone
  317.   wants to read it.  That way it works for more than just news, but
  318.   for anything that wants to read your .signature, like a mailer.
  319.  
  320.   You have your choice of three kinds of signatures:
  321.  
  322.       1) random (short) fortune from "fortune -s"; you get these if
  323.      you don't have a global sig file.
  324.       2) random fortune from ~/News/SIGNATURES [global sig file]
  325.       3) random fortune form ~/News/(newsgroup)/SIGNATURES [local sig files]
  326.  
  327.   Ask Tom Christiansen <tchrist@convex.com> for more details.
  328.  
  329.  
  330. Subject: How can I make mail replies go to a different machine?
  331. From: Using nn-38
  332.  
  333.   See "How can I update my mail headers?"  [9.92]
  334.  
  335.  
  336. Subject: How come more articles get selected than I expect?
  337. From: Using nn-39
  338.  
  339.   Check the setting of subject-match-parts. If this is on, then your subjects
  340.   are considered matched if they match up to the first digit. For example
  341.   if subject-match-parts is on, the subjects:
  342.  
  343.     someprogram Part 1/5
  344.     someprogram Part 2/5
  345.  
  346.   are considered matches. So are
  347.  
  348.     v12345: someprogram Part 1/5
  349.     v12346: anotherprogram Part 1/23
  350.  
  351.   as the "v" is identical up to the first digit. If you want to use
  352.   subject-match-parts in a "comp.sources" type group, set
  353.   subject-match-offset (the character position that matches are
  354.   started from) to be beyond any digits that might appear in the first
  355.   part of the subject.  --Dave Hayes <dave@elxr.jpl.nasa.gov>
  356.  
  357.  
  358. Subject: Any plans for trn-ish thread following?
  359. From: Using nn-40
  360.  
  361.   At the moment, no.
  362.  
  363.  
  364. Subject: Setting new-group-action to "ask before adding" doesn't work.
  365. From: Using nn-41
  366.  
  367.   Take NEW out of your sequence--it's redundant.
  368.  
  369.  
  370. Subject: Why does nn crash when a letter one past the highest letter is selected?
  371. From: Using nn-42
  372.  
  373.   This is fixed in patch 17.  [9.92]
  374.  
  375.   Your terminal modes will be screwed up after such an event, so
  376.   you'll have to type ^J (or LINE-FEED) repeatedly until a prompt is
  377.   seen, and then run
  378.  
  379.     stty -sane^J
  380.  
  381.   or
  382.  
  383.     reset
  384.  
  385.  
  386. Subject: Why do articles without a Lines header appear empty?
  387. From: Using nn-43
  388.  
  389.   This problem only shows up if you have header-lines set to a string
  390.   that includes "L".  It is suspected that having the line count patch
  391.   sets something that makes nn think there is a Lines header and then
  392.   the header-string is telling it to display the Lines header but
  393.   there isn't one and things get messed up.  --Gary Morris
  394.   <garym@telesoft.com>
  395.  
  396.  
  397. Subject: How do I save my posts, followups and replies automatically?
  398. From: Using nn-44
  399.  
  400.   In your nn init file, use the following lines:
  401.  
  402.     set news-record file
  403.     set mail-record file
  404.  
  405.   to place posts and followups in one file and replies in another, or
  406.   to put everything in a single file, use:
  407.  
  408.     set record file
  409.  
  410.   Replace "file" with the absolute path (~ == home directory ok) of
  411.   your desired file.  All files are saved in mailbox format.  --Don
  412.   Mullins <mullins@convex.com> [9.92]
  413.  
  414.  
  415. Subject: How can I change how my real name appears?
  416. From: Using nn-45
  417.  
  418.   On BSD Unix systems, you can run the command chfn(1) to change
  419.   your real name.  If you don't want to do this, or can't, please
  420.   see "How can I update my mail headers?"  [9.92]
  421.  
  422.  
  423. Subject: ! How can I customize my mail headers for mail and posting?
  424. From: Using nn-46
  425.  
  426.   Headers can be modified or appended to by creating the variables
  427.   mail-header (for replies) and news-header (for posts and followups)
  428.   in the init file. You can include any headers that you want;
  429.   separate multiple headers with semi-colons.  For example:
  430.  
  431.   set mail-header From: Joe Smith <js@cc.edu>;Reply-To: js@cc.edu;
  432.           Organization: CC University
  433.   set news-header From: Joe Smith <js@cc.edu>;Reply-To: js@cc.edu;
  434.           Organization: CC University
  435.  
  436.   Note that these lines are split for readability--the value of these
  437.   variables must appear on a single line.  In addition, do not insert a
  438.   space between semi-colons and the next header.
  439.  
  440.   A Reply-To header is useful when your system generates either an
  441.   unwanted or blatantly wrong return address for you.  If this header
  442.   is present, then mailers use it instead of the system generated From
  443.   header.
  444.  
  445.   A From header is useful when you want to change how your real name
  446.   appears to nn readers, but you don't want to change it (or can't) on
  447.   your system.  Warning: only do this if you're sure you can create a
  448.   RFC 822 compliant From header.  [9.92]
  449.  
  450.  
  451. Subject: + Can the article viewer/pager be changed?
  452. From: Using nn-47
  453.  
  454.   No.  And for good reason.  There are too many commands in nn's pager
  455.   that less, for example, doesn't know anything about.
  456.  
  457.  
  458. Subject: Why does nnmaster stop collecting articles at the "junk" group?
  459. From: nnmaster-50
  460.  
  461.   This can occur when you access news via NNTP.  Older nntp servers
  462.   have a limitation of 4000 articles in a group, and junk may easily
  463.   exceed this which makes the nntp server crash.
  464.  
  465.   To overcome the problem, edit the GROUPS file to add the X flag on
  466.   the junk group, run nnmaster -G, and then nnmaster will ignore the
  467.   junk group.  --Kim Storm <storm@olicom.dk>
  468.  
  469.   In nntp_dir/common/conf.h, you can either increase MAX_GROUPS
  470.   (normally 4096) or you can set #define DYNAMIC_ART_ARRAY (normally
  471.   #undefed).  In either case, you obviously have to recompile nntp.
  472.  
  473.   But you can also add new groups on a regular basis, rather than
  474.   letting junk build up to huge proportions.  --Mark Rawling
  475.   <Mark.Rawling@mel.dit.csiro.au>
  476.  
  477.  
  478. Subject: How do I cope with "Incomplete MASTER file"?
  479. From: nnmaster-51
  480.  
  481.   See "Why isn't nnmaster working?"
  482.  
  483.  
  484. Subject: Why isn't nnmaster working?
  485. From: nnmaster-52
  486.  
  487.   After the make, did you remember to:
  488.  
  489.     Run ./inst <options> to install the files?
  490.     Run ./inst INIT to initialize the database?
  491.  
  492.   Nnmaster mails error messages to the user who owns him (typically
  493.   "news").  Check this mailbox for clues.
  494.  
  495.   If nnmaster -r or -D did not work, then neither did nnmaster -I (or
  496.   ./inst INIT from the install directory).  Once you fix the
  497.   permissions (see Paul's answer below), you need to rerun the
  498.   initialization step.  --Stew Ellis <ellis@nova.gmi.edu>
  499.  
  500.   If nnmaster dies and updates the Log file with "Incomplete MASTER
  501.   file", it could be you're not running the latest version.  --David
  502.   R. Hieb <David.R.Hieb@magi.rootgroup.com>
  503.  
  504.   If, when you start your nnmaster, it just exits quietly, it could be
  505.   that your permissions are incorrect.  Ensure that all directories in
  506.   the nn library are owned by news (or the owner that you configured
  507.   nn with).  --Paul Bickerstaff <pbickers@tamaluit.phys.uidaho.edu>
  508.  
  509.   Make sure that there is a 'news' entry in passwd and group since
  510.   nnmaster is run setuid/setgid to news and the files and directories
  511.   that nnmaster needs to access are owned and writable by news.  --Jim
  512.   Jagielski <jim@jagubox.gsfc.nasa.gov> [9.92]
  513.  
  514.   Another problem could be in the way it is started.  Two related
  515.   solutions are presented.
  516.  
  517.   /etc/rc exits before the child has had the chance to setpgrp().
  518.   Putting "sleep 5" at the end of /etc/rc fixed it. --David B. Thomas
  519.   <dt@yenta.alb.nm.us>
  520.  
  521.   Another similar solution involved inserting a "sleep 10" at the
  522.   beginning of /etc/daemons/nnmaster.init file.
  523.   --Jeffery Small <jeff@cjsa.wa.com>
  524.  
  525.   It could be you're not running the latest version.  --David R. Hieb
  526.   <David.R.Hieb@magi.rootgroup.com>
  527.  
  528.  
  529. Subject: Why do I get ".../MASTER not found"?
  530. From: nnmaster-53
  531.  
  532.   The problem of the NN port to the Atari ST is, that you have to
  533.   build an "active" file (NN format, not HERMES-like!!) in
  534.   /usr/lib/news before running nnadmin -I.
  535.  
  536.   You can build this file by using the included "buildact.tos."
  537.   Buildact.tos creates a UNIX-like /usr/lib/news/active from
  538.   /usr/lib/hermes/active. [9.92]
  539.  
  540.  
  541. Subject: Glossary
  542. From: Appendix
  543.  
  544.   NNTP        Network News Transport Protocol (see RFC 977)
  545.  
  546.  
  547. Subject: Acknowledgements
  548. From: Appendix
  549.  
  550. I'd like to thank the following people for providing ideas on the
  551. layout of this article:
  552.  
  553. Joe Wells <jbw@bigbird.bu.edu>          Richard M. Stallman <rms@gnu.ai.mit.edu>
  554. David Elliott <dce@smsc.sony.com>     Tom Christiansen <tchrist@convex.com>
  555. Eugene N. Miya <eugene@nas.nasa.gov>
  556.  
  557.  
  558. We are also grateful to the individuals mentioned below and in the
  559. text of this document who have provided answers or other information
  560. to make this a better document.  I regret that it is possible that
  561. some names have been accidently omitted.  I would also like to thank
  562. all the readers of news.software.nn.
  563.  
  564. Kim Storm <storm@olicom.dk>           Sven Guckes <guckes@math.fu-berlin.de>
  565.  
  566.  
  567. Subject: Warranty
  568. From: Appendix
  569.  
  570. [The following statement epitomizes the ridiculous state of affairs in
  571. our country (I'm an American) and can be ignored outside the US...]
  572.  
  573. No Warranty: Because this article is provided free of charge as a
  574. service to news.software.nn readers, we provide absolutely no
  575. warranty, to the extent permitted by applicable state law.  This
  576. article is provided "as is" without warranty of any kind, either
  577. expressed or implied, including, but not limited to, the implied
  578. warranties of merchantability and fitness for a particular purpose.
  579. Should the information prove defective, you assume the cost of all
  580. necessary servicing, repair or correction.
  581.  
  582. Local Variables:
  583. mode: outline
  584. outline-regexp: "^Subject:"
  585. fill-prefix: "  "
  586. eval: (progn (setq buffer-read-only nil) (hide-body))
  587. End:
  588. Xref: bloom-picayune.mit.edu misc.forsale.computers:54826 news.answers:3681
  589. Path: bloom-picayune.mit.edu!mintaka.lcs.mit.edu!olivea!spool.mu.edu!umn.edu!umeecs!niagara.eecs.umich.edu!khushro
  590. From: khushro@eecs.umich.edu (Khushro Shahookar)
  591. Newsgroups: misc.forsale.computers,news.answers
  592. Subject: NON-PROFIT ORGANIZATIONS accepting computer donations
  593. Summary: Posted when there are corrections
  594. Message-ID: <1992Oct25.020735.19142@zip.eecs.umich.edu>
  595. Date: 25 Oct 92 02:07:35 GMT
  596. Sender: news@zip.eecs.umich.edu (Mr. News)
  597. Reply-To: khushro@eecs.umich.edu
  598. Followup-To: misc.forsale.computers
  599. Distribution: usa
  600. Organization: University of Michigan EECS Dept.
  601. Lines: 347
  602. Approved: news-answers-request@MIT.Edu
  603. Originator: khushro@niagara.eecs.umich.edu
  604.  
  605. Archive-name: non-profit-organizations
  606.  
  607. There have been a number of postings from non-profit organizations
  608. requesting donations of used / old computer equipment. Here is a list
  609. of some of them for archival purposes.
  610. This list will be re-posted when there are additions/corrections.
  611. Send additions/corrections to khushro@eecs.umich.edu.
  612. The list can be obtained by anonymous ftp from pit-manager.mit.edu
  613. as the file /pub/usenet/news.answers/non-profit-organizations.
  614.  
  615. For convenience, the list is divided into 3 categories:
  616. 1) Churches
  617. These are generally not hackers, and require working equipment mainly for
  618. desktop publishing / accounts etc.
  619.  
  620. 2) High school and college groups
  621. Some of these are hackers, and would love to get their hands on odd-looking
  622. computer curios.
  623.  
  624. 3) Others
  625. ----------------------------------------------
  626. 1) CHURCHES
  627.  
  628. Lumen Productions:
  629. award@auspex.com
  630. on behalf of Jim McCarthy for Lumen Productions
  631. Lumen is a N.P. ministry devoted to providing information to
  632. Roman Catholics and former Catholics who desire truth and knowledge
  633. according to the Bible, not according to Rome.
  634.  
  635. desires:
  636.     new or working IBM PC (386 or higher) equipment for workstations
  637.     postscript laser printer
  638.     networking boards (ethernet)
  639.     line printer
  640.     fast dot-matrix with push-type tractor feed
  641.  
  642.     television broadcast cameras and VCR's preferably portable
  643.     remote lights and audio equipment
  644. --------
  645.  
  646. Chinese Alliance Life Church:
  647. Our church is actively seeking computer hard
  648. ware and software for accounting and desktop publishing.  Here goes the
  649. church information:
  650.  
  651.     Rev. David Wang
  652.     Chinese Alliance Life Church
  653.     6081 Lemon Ave. #A
  654.     Cypress, CA 90630
  655.     (714)527-8544
  656.  
  657. My email address is wang@wintermute.fullerton.edu in case you have to get
  658. in contact with me.
  659.  
  660. -------
  661.  
  662. Liudvikas Bukys, Deacon
  663. Cornerstone Christian Church
  664. 820 South Clinton Ave
  665. Rochester, NY  14620
  666.  
  667. Email to bukys@cs.rochester.edu,
  668. or call 716-442-9790 and leave a message with a return number.
  669.  
  670. Seeking APPLE MACINTOSH or Mac-compatible equipment:
  671.         * machines, monitors, keyboards, disks (external scsi), etc.
  672.         * laser printer (PostScript or QuickDraw).
  673.  
  674. Also interested in sound equipment:
  675.         * COMPRESSOR/LIMITER, in particular.
  676.         * TAPE DUPLICATOR in good condition would be welcome, ours is
  677.                 getting pretty old.
  678.         * probably anything decent that you'd be willing to part with
  679.                 (mics (XLR), stands, cables, eq, effects, patch bay, 19" rack).
  680.         * might be interested in musical instruments or MIDI things.
  681.  
  682. Information on the church, available on request.  You'd get a receipt
  683. on letterhead.  However, we're not appraisers, so we can't state a
  684. particular dollar value.  BUT I'd be happy to invest some effort into
  685. finding documentation regarding value from other sources (used equipment
  686. dealers, ads, etc), to keep you and the IRS happy.
  687.  
  688. -------------------------------------
  689.  
  690. 2) HIGH SCHOOL AND COLLEGE GROUPS
  691.  
  692. SEDS:
  693. seds@pioneer.unm.edu
  694. Students for the Exploration and Development of Space
  695. Box 92 SUB
  696. University of New Mexico
  697. Albuquerque, NM  87131
  698.  
  699. We try to bring an awareness of space related activities to the university
  700. community and are the main backers behind an image archive on this site.
  701. ------
  702.  
  703.   St. Peter's College
  704.   Academic Computer Center
  705.   2641 Kennedy Blvd
  706.   Jersey City, NJ 07306
  707.   Terry Kennedy, Operations Manager
  708.   (201) 435-0252 [voice]
  709.   (201) 435-3662 [FAX]
  710.  
  711.   St. Peter's College is a private Liberal Arts college founded in 1872.
  712.  
  713.   We repair and operate old systems so that students can have an understanding
  714. of the history of computing. We specialize in older DEC systems.
  715.  
  716.     Terry Kennedy        Operations Manager, Academic Computing
  717.     terry@spcvxa.bitnet    St. Peter's College, Jersey City, NJ USA
  718.     terry@spcvxa.spc.edu    +1 201 915 9381
  719. ------
  720.  
  721. The Alternate Collegiate Computing Association:
  722. bob@acca.nmsu.edu
  723. Las Cruces, New Mexico
  724. The Alternate Collegiate Computing Association is a group devoted to
  725. meeting the non-academic needs of students everywhere.
  726. ------
  727.  
  728. Name: North Carolina Student Legislature, Inc.
  729.  
  730. Description:  An organization for college student ran entirely by college
  731. students to facilitate the learning of the legislative process.
  732.  
  733. Contact: Attorney General
  734.          Kenneth L. Wright
  735.          907G Method Rd.
  736.          Raliegh NC 27606
  737.          klwright@eos.ncsu.edu
  738. ------
  739.  
  740. -The Student Environmental Action Coalition of Western Pennsylvania-
  741.  
  742. contact:
  743. Josh Knauer
  744. (412) 268-4949
  745.  
  746. This organization is dedicated to helping student activists network with
  747. each other in order to solve a variety of problems in an effective and
  748. rational way.
  749. Please call if you have any sort of computer equipment that you can donate.
  750.  
  751. ---------------------------------------
  752.  
  753. 3) OTHER
  754.  
  755.  
  756. ORGANIZATION:
  757.     Yavneh Day School, 14855 Oka Rd, Los Gatos, CA  95030
  758.     Bonnie Slavitt-Moore, Principal
  759.  
  760. DESCRIPTION:
  761.     Yavneh is a non-profit day school, with classes ranging from
  762.     pre-kindergarten through fifth grade.  Yavneh is known for
  763.     academic excellence in Judaica and General Studies.  Exemplary
  764.     is Yavneh's "Innovations in Education" program to introduce
  765.     very young children to computer technology.
  766.  
  767. EMAIL CONTACT:
  768.     aschwartz@auspex.com
  769.  
  770. NEEDS:
  771.     early compact Macintoshes (Mac128k, Mac512K, MacPlus)
  772.     Apple IIe or Apple IIc equipment
  773. -------
  774.  
  775. Organization: Colina De Luz
  776. Contact:    Scott R. Turner
  777.         3920 Inglewood Blvd., #3
  778.         Los Angeles, CA 90066-4525
  779.         (213) 390-9126
  780.         srt@aerospace.aero.org
  781. Description:
  782.   Colina De Luz is a Mexican orphanage located just south of San Diego.
  783. There are about 100 children ranging from babies to young adults.
  784. Seeking:
  785.   Colina De Luz seeks the donation of working IBM PC compatible
  786. equipment for a vocational training lab.  Particularly sought are:
  787. complete systems (require working monitor and 5.25" floppy), EGA
  788. monitors/cards, hard drives.
  789. -------
  790.  
  791. Tammy Lynn Center:
  792. I am currently collecting Apple IIgs/IIe equipment, especially any of the
  793. physically handicapped peripherals, for the Tammy Lynn Center. I am not
  794. directly connected with them, but I am just offering my time/services to help
  795. them.
  796.  
  797. The Tammy Lynn Center (TLC), located in Raleigh, NC is a developmental center
  798. for the young handicapped and is in need of Apple IIgs/IIe equipment, and
  799. special peripherals for the handicapped, to allow the children to broaden
  800. their learning capabilities.
  801. -------
  802.  
  803.     Arbornet, Inc. is a non-profit, tax deductable organization which runs
  804. M-Net in Ann Arbor, MI., a 15 line Unix BBS.
  805.     Our e-mail address is staffs@m-net.ann-arbor.mi.us
  806.  
  807.     Equipment donations received may be used by M-Net, or may be sold at
  808. computer sales to provide us with funds for future expansion and replacement
  809. equipment.
  810. -------
  811.  
  812. Colagte University Television:
  813.    I am the general manager of Colagte University Television, a severly
  814. underfunded college TV station.  We are located in Hamilton, NY (near
  815. Syracuse), and my e-mail address is rjohnson@colgate.edu or
  816. rjohnson@sdf.lonestar.org during the summer.  We are looking for any
  817. type of computer (Unix boxes, PC's, Amigas, etc)/technical equiptment
  818. (scopes, line testers, etc)/video equiptment(TV's, VCR's, editing
  819. equiptment, etc) that we can find.
  820.    Thanks,
  821.      Robert Johnson
  822. -------
  823.  
  824. The Harvard _Independent_
  825. jonathan brecher
  826. Executive Operations Officer
  827. brecher@husc.harvard.edu
  828. Cambridge, Massachusetts
  829. We really can only use Macintosh equipment, or equipment that can be coaxed
  830. into working with Macs.
  831. ------
  832.  
  833. Barnesville School:
  834.         Donation of Atari computer equipment wanted for a private, non-profit
  835. school in the tiny town of Barnesville, Marylor educational software
  836. needed for a private school in the tiny town of Barnesville, Maryland is
  837. sought.  The Barnesvill School (a private pre- and primary school (3yr olds up
  838. to 6th grade at present, may go to 8th grade next year) would appreciate any
  839. Atari equipment or software you might want to give, either gratis or as a
  840. tax-write off.
  841.  Please send any equipment or disks to
  842.         Janice Schaffran (math and computer teacher)
  843.                 The Barnesville School
  844.                 21830 Peach Tree Rd.
  845.                 Box 404, Barnesville, MD  20838
  846.                 (301) 972-0341
  847. or contact
  848.         Roger Erickson  (rge@helix.nih.gov) for more details.
  849.  
  850. -----
  851.  
  852. Organization:  Free Access Foundation
  853. Contact: faf@halcyon.com, faf@faf.org, or ninja@halcyon.com
  854.